home *** CD-ROM | disk | FTP | other *** search
/ Spiceworld The Movie - Interactive CD-ROM / Spiceworld The Movie: Interactive CD-ROM.iso / pc / elements / spicetwo.dir / games_22_scary Squares.ls < prev    next >
Encoding:
Text File  |  1997-12-04  |  366 b   |  19 lines

  1. on mouseUp
  2.   global SCARYSTART
  3.   if SCARYSTART = 1 then
  4.     beep()
  5.     exit
  6.   end if
  7.   set the visible of sprite 12 to 0
  8.   set the visible of sprite 13 to 1
  9.   updateStage()
  10.   repeat with x = 15 to 23
  11.     set the visible of sprite x to 0
  12.     updateStage()
  13.   end repeat
  14.   repeat with x = 2 to 10
  15.     set the visible of sprite x to 1
  16.     updateStage()
  17.   end repeat
  18. end
  19.